home *** CD-ROM | disk | FTP | other *** search
- global gSIUtils, ghfathleteno
-
- on WriteWordLists
- repeat with vI = 1 to 290
- if vI < 10 then
- set vAth to "00"
- else
- if vI < 100 then
- set vAth to "0"
- else
- set vAth to EMPTY
- end if
- end if
- set vAth to vAth & vI
- put vAth
- set ghfathleteno to vAth
- LoadAthleteDB()
- set vFile to FileIO(mnew, "write", "E:\WL" & vAth & ".TXT")
- repeat with vPage = 1 to 10
- set vCast to GetAssetNo("BIO" & vAth & vPage)
- if vCast = -1 then
- exit repeat
- end if
- set vText to the text of cast vCast
- set vText to gSIUtils(mToUpperCase, vText)
- set vText to gSIUtils(mNoPunct, vText)
- repeat with vWord = 1 to the number of words in vText
- vFile(mWriteString, word vWord of vText & RETURN & numToChar(10))
- end repeat
- end repeat
- vFile(mdispose)
- end repeat
- end
-